home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 / Ham Radio 2000.iso / ham2000 / misc / sim120bn / div7.net < prev    next >
Text File  |  1993-11-09  |  1KB  |  33 lines

  1. !Documentation
  2.  
  3.     (c) Copyright 1992 Genashor Corp.  All rights reserved.
  4.  
  5.     After performing simulations using nominal delays, you know that
  6.     actual delays in silicon will differ.  SIMIC has unique hazard
  7.     analysis capabilities that inform you if minor delay variations will
  8.     cause the circuit to malfunction.
  9.  
  10.     This circuit is a divide by seven counter made up of T flip flops.
  11.     Using the SIMIC run commands in the file 'div7.run', you will see
  12.     how circuit troubleshooting is performed in SIMIC.  Though this
  13.     debugging session will be done in batch mode, SIMIC allows any
  14.     command to be entered interactively.  This allows each step of the
  15.     circuit debugging to be chosen based on the results of the previous
  16.     information.
  17.  
  18.     Though this circuit has fixed delays, SIMIC allows delays to be
  19.     modified with loading conditions.
  20.  
  21. !Logical
  22. !Format    Part=    Type=    I=            Orise=    Ofall=
  23. Type=divide_by_7 I=clock,reset O=q4
  24.     q1    tncf    reset,skip_2,clock
  25.     q2    tncf    reset,one,cl2
  26.     q4    tncf    reset,one,cl4
  27.     skip_2    nand    nq4,nq1_q2        1    1
  28.     nq1_q2    nor    nq2,q1            3    3
  29.     nq2    inv    q2            2    2
  30.     nq4    inv    q4            6    3
  31.     cl2    and    q1,clock
  32.     cl4    and    q1,q2,clock
  33.